type crypto/tls.certificateMsg

8 uses

	crypto/tls (current package)
		conn.go#L1051: 			m = new(certificateMsg)
		handshake_client.go#L475: 	certMsg, ok := msg.(*certificateMsg)
		handshake_client.go#L576: 		certMsg = new(certificateMsg)
		handshake_messages.go#L1202: type certificateMsg struct {
		handshake_messages.go#L1207: func (m *certificateMsg) marshal() (x []byte) {
		handshake_messages.go#L1242: func (m *certificateMsg) unmarshal(data []byte) bool {
		handshake_server.go#L505: 	certMsg := new(certificateMsg)
		handshake_server.go#L581: 		certMsg, ok := msg.(*certificateMsg)